home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d20 / fddev202.arc / C.ARC / MODEM.H < prev    next >
Text File  |  1991-10-01  |  1KB  |  30 lines

  1. /*
  2. **  modem.h (FrontDoor)
  3. **
  4. **  Copyright 1991 Joaquim H. Homrighausen. All rights reserved.
  5. **
  6. **  MODEM.FD format for FrontDoor 2.01+
  7. **
  8. **  Last revision:  91-10-02
  9. **
  10. **  -------------------------------------------------------------------------
  11. **  This information is not necessarily final and is subject to change at any
  12. **  given time without further notice
  13. **  -------------------------------------------------------------------------
  14. */
  15.  
  16.     typedef struct
  17.         {
  18.         char            matchstr[24],                      /*String to match*/
  19.                         sendstr[32];                        /*String to send*/
  20.         unsigned int    flags;                               /*Various flags*/
  21.  
  22.         }
  23.         _MODEMREC;
  24.  
  25.     #define MODEM_MAXENTRY  256          /*Maximum number of entries in list*/
  26.     #define MODEM_INACTIVE  0x0001                 /*Ignore string, inactive*/
  27.     #define MODEM_DELETED   0x8000                   /*Never written to disk*/
  28.  
  29. /* end of file "modem.h" */
  30.